@font-face {
  font-family: 'sharetech-regular';
  src: url(https://extremities.neocities.org/mainFont/sharetech-regular-webfont.woff);
}
      
body {
  color: white; 
  background: rgba(0,6,25,1);
  height: auto;
  margin: 0;
  height: auto;
  min-height: 100vh;
  font-family: 'sharetech-regular';
  overflow-y: auto;
}

.container {
  z-index: 2;
  position: relative;
  width: clamp(300px, 80%, 750px);
  margin: 0px auto; /* Vertical and horizontal centering */
  padding: 2rem;
}

@media (min-width: 769px) {
    .container {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: clamp(300px, 70%, 800px);
      max-height: 80vh;
      margin: 0;
      box-shadow: 0 0 30px rgba(0,0,0,0.15);
    }
}

.main_gradient {
  z-index: -99;
  position: fixed;
  background-image: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0), rgba(0,0,0,0.75));
  width: 100vw;
  height: 100vh;
}

img {
  pointer-events: none; 
}

a { /* removes the blue link */
  color: inherit; 
  text-decoration: none; 
}

.main_image {
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

.titles > h1 {
  margin-top: 10px;
  margin-bottom:20px;
  text-align: center; 
  font-weight: normal;
  font-size: 28px;
}

.self_proclaimed_titles {
  text-align:center;
  border-top-style: ridge;
  border-bottom-style: ridge;
  border-color: rgba(20,5,17,1);
  list-style-type: none;
  font-size: 17.5px;
  margin: 0;
  padding: 20px 50px 20px 50px;
}

.main_page {
  margin-top: 20px; 
}

.sides {
 display: inline-block;
}

.highs_side {
  border-top-style: ridge;
  border-color: rgba(0,6,25,1);
  width: calc(50% - 25px);
  padding:5px;
  padding-top: 20px;
  float: left;
}

.lows_side {
  border-top-style: ridge;
  border-color: rgba(25,0,6,1);
  margin-left: calc(50% + 9px);
  padding:5px;
  padding-top: 20px;
  text-align:right;
}

.self_proclaimed_titles > li {
  display:inline-block; 
}

.extra_info {
  font-size: 10px;
  opacity:0.5;
  margin-top: 20px;
  text-align:center; 
}

.back_button {
  margin-top: 20px;
  letter-spacing: 7px;
  text-align:center; 
}

.back_button > a {
  font-size: 17px;
  display:inline-block;
  width: 52.5px;
  padding-bottom:3.33px;
  transition: 0.5s;
  border-bottom-style: solid;
  border-color: rgba(80,20,68,1);
}

.back_button > a:hover {
  width: 107px;
  letter-spacing:14px;
}


.back_button > a:after {
  content: "//";
  position: relative;
  left: 55px;
  opacity: 0;
  transition: 0.35s;
  letter-spacing: 7px;
}

.back_button > a:hover:after {
  left: 5px;
  opacity: 1;
  letter-spacing:7px;
}